Tables [dbo].[AccountingMethodRef]
Properties
PropertyValue
Created10:31:12 AM Tuesday, March 02, 2010
Last Modified11:39:59 AM Monday, February 20, 2012
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key PK_AccountingMethodRef: AccountingMethodCodeAccountingMethodCodenchar(1)2
No
AccountMethodDescnvarchar(50)100
No
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK_AccountingMethodRef: AccountingMethodCodePK_AccountingMethodRefAccountingMethodCode
Yes
SQL Script
CREATE TABLE [dbo].[AccountingMethodRef]
(
[AccountingMethodCode] [nchar] (1) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[AccountMethodDesc] [nvarchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]

GO
ALTER TABLE [dbo].[AccountingMethodRef] ADD CONSTRAINT [PK_AccountingMethodRef] PRIMARY KEY CLUSTERED ([AccountingMethodCode]) ON [PRIMARY]
GO
Uses
Used By